home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk1 / lst4-4.asm < prev    next >
Assembly Source File  |  1990-02-15  |  203b  |  12 lines

  1. ;
  2. ; *** Listing 4-4 ***
  3. ;
  4. ; Measures the performance of reading 1000 words
  5. ; from memory with 2000 byte-sized accesses.
  6. ;
  7.     sub    si,si
  8.     mov    cx,2000
  9.     call    ZTimerOn
  10.     rep    lodsb
  11.     call    ZTimerOff
  12.